home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / challenge / 12.04-Apr96 / LifeTestCode DR3.sit / Life TestCode DR3 / PropagateLife.c < prev    next >
Text File  |  1996-04-01  |  390b  |  19 lines

  1. /*    PropagateLife.c    */
  2.  
  3.  
  4. #include "PropagateLife.h"
  5.  
  6.  
  7. pascal long PropagateLife(
  8. BitMap    cells,
  9. long    numGenerations,
  10. short    birthrules,
  11. short    deathrules){
  12.  
  13. /****************************************************************/
  14. /*    PUT YOUR SOLUTION CODE HERE                                            */
  15. /****************************************************************/
  16.  
  17.     return numGenerations;    /*change this to your value    */
  18.     
  19. }